API Documentation
OutputTarget.h
1 // OutputTarget.h
3 //
5 
6 namespace nkDebug
7 {
11  class OutputTarget final
12  {
13  public :
14 
15  // Functions
16  // Constructor, destructor
26 
27  // Setters
37  void setTargetFile (const nkMemory::StringView& path) ;
38 
39  // Output
45  void write (const nkMemory::StringView& s) ;
46  } ;
47 }
nkDebug::OutputTarget::write
void write(const nkMemory::StringView &s)
nkDebug::OutputTarget::setTargetLogManager
void setTargetLogManager()
nkDebug::OutputTarget::~OutputTarget
~OutputTarget()
nkDebug::OutputTarget::setTargetFile
void setTargetFile(const nkMemory::StringView &path)
nkMemory::StringView
Class holding information about a string, with no ownership over the data.
Definition: StringView.h:22
nkDebug
Encompasses all API of component NilkinsDebug.
Definition: LogManager.h:7
nkDebug::OutputTarget::OutputTarget
OutputTarget()
nkDebug::OutputTarget
Allows to customize the output target of test results.
Definition: OutputTarget.h:12